home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Network Workgroup.xpl < prev    next >
Text File  |  2001-04-13  |  2KB  |  95 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="5"
  4. "UIPATH 1"="Network\Security\General"
  5. "UIPATH 2"="Appearance\Explorer\Settings (Advanced)"
  6. "NAME"="Workgroup Security Options"
  7. "VERSION"="1.14"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Show "Entire Network" in My Network Places"
  10. "TEXT 2"="Show other workgroup-users in My Network Places"
  11. "TEXT 3"="Show "Connect/Disconnect drive" in Explorer"
  12. "TEXT 4"="Allow file sharing"
  13. "TEXT 5"="Allow printer sharing"
  14. "DESCRIPTION 1"="Some options to improve the security of your network."
  15. "DESCRIPTION 2"="Please note: On Win95/98/NT systems, "My Network Places" is called "Network Neighborhood."
  16. "AUTHOR"="Xteq Systems (CptSiskoX)"
  17. "CONTACTURL"="http://www.xteq.com"
  18. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  19. "COMMENT 1"=" "
  20.  
  21.  
  22. sP1="HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Network\"
  23. sV1="NoEntireNetwork"
  24. sV2="NoWorkgroupContents"
  25. sP1andV3="HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoNetConnectDisconnect"
  26. sV4="NoFileSharing"
  27. sV5="NoPrintSharing"
  28.  
  29. Sub Plugin_Initialize 
  30.  i=RegReadValue(sP1&sV1)
  31.  if i=0 or IsEmpty(i) then
  32.     SetUIElement 1,true
  33.  end if
  34.  
  35.  i=RegReadValue(sP1&sV2)
  36.  if i=0 or IsEmpty(i) then
  37.     SetUIElement 2,true
  38.  end if
  39.  
  40.  i=RegReadValue(sP1andV3)
  41.  if i=0 or IsEmpty(i) then
  42.     SetUIElement 3,true
  43.  end if
  44.  
  45.  i=RegReadValue(sP1&sV4)
  46.  if i=0 or IsEmpty(i) then
  47.     SetUIElement 4,true
  48.  end if
  49.  
  50.  i=RegReadValue(sP1&sV5)
  51.  if i=0 or IsEmpty(i) then
  52.     SetUIElement 5,true
  53.  end if
  54.  
  55.  
  56. End Sub
  57.  
  58. Sub Plugin_CheckData(ElementIndex)
  59. End Sub
  60.  
  61. Sub ae(val,Path)
  62.  if val=true then
  63.    Call RegWriteValue(path,1,2)
  64.  else
  65.    Call RegWriteValue(path,0,2)
  66.  end if
  67. end Sub
  68.  
  69.  
  70. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  71.  b=GetUIElement(1)
  72.  Call ae(not b,sP1&sV1)
  73.  
  74.  b=GetUIElement(2)
  75.  Call ae(not b,sP1&sV2)
  76.  
  77.  b=GetUIElement(3)
  78.  Call ae(not b,sP1andV3)
  79.  
  80.  b=GetUIElement(4)
  81.  Call ae(not b,sP1&sV4)
  82.  
  83.  b=GetUIElement(5)
  84.  Call ae(not b,sP1&sV5)
  85.  
  86.  Restart
  87. End Sub
  88.  
  89.  
  90. Sub Plugin_Terminate 
  91. End Sub
  92.  
  93.  
  94.  
  95.